home *** CD-ROM | disk | FTP | other *** search
- /*
- File: VersionResources.r
-
- Contains: Standard version resource for SimpliFace
-
- Developed by:
-
- Paul G Smith (commstalk hq & Full Moon Software, Inc)
-
- you can leave messages at (UK): 0727 844232; (US): 408 253 7199
- BUT I prefer to be contacted by e-mail
- AppleLink: SMITH.PG
- Internet: SMITH.PG@applelink.apple.com
-
- "SimpliFace" Sample code to accompany develop article
- on techniques for embedding scripts in applications.
-
- */
-
-
-
- #include "SysTypes.r"
-
- #define VMajor kVersMajor
- #define VMinor kVersMinor
- #define VStage kVersKind
- #define VRelease kVersRev
- #define VShortString kVersion "x" $$Shell("bcount")
- #define VLongString1 kVersion "x" $$Shell("bcount") " @ " $$Time ", " $$Date
- #define VLongString2 kVersion "; Copyright © commstalk hq, 1993"
-
- resource 'vers' (1) {
- VMajor, VMinor, VStage, VRelease, verUS,
- VShortString,
- VLongString1
- };
-
- resource 'vers' (2) {
- VMajor, VMinor, VStage, VRelease, verUS,
- VShortString,
- VLongString2
- };
-